home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / crt / symm.md / crt0.c < prev    next >
C/C++ Source or Header  |  1990-08-10  |  8KB  |  198 lines

  1. /*
  2.  * This file copied from GNU emacs... everything not relevant to
  3.  * Sequent Symmetry has been removed... -fubar 
  4.  */
  5.  
  6. /* C code startup routine.
  7.    Copyright (C) 1985, 1986 Free Software Foundation, Inc.
  8.  
  9.                NO WARRANTY
  10.  
  11.   BECAUSE THIS PROGRAM IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY
  12. NO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW.  EXCEPT
  13. WHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC,
  14. RICHARD M. STALLMAN AND/OR OTHER PARTIES PROVIDE THIS PROGRAM "AS IS"
  15. WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
  16. BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY
  18. AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE
  19. DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
  20. CORRECTION.
  21.  
  22.  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL RICHARD M.
  23. STALLMAN, THE FREE SOFTWARE FOUNDATION, INC., AND/OR ANY OTHER PARTY
  24. WHO MAY MODIFY AND REDISTRIBUTE THIS PROGRAM AS PERMITTED BELOW, BE
  25. LIABLE TO YOU FOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR
  26. OTHER SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  27. USE OR INABILITY TO USE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR
  28. DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR
  29. A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) THIS
  30. PROGRAM, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
  31. DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY.
  32.  
  33.         GENERAL PUBLIC LICENSE TO COPY
  34.  
  35.   1. You may copy and distribute verbatim copies of this source file
  36. as you receive it, in any medium, provided that you conspicuously and
  37. appropriately publish on each copy a valid copyright notice "Copyright
  38. (C) 1986 Free Software Foundation, Inc."; and include following the
  39. copyright notice a verbatim copy of the above disclaimer of warranty
  40. and of this License.
  41.  
  42.   2. You may modify your copy or copies of this source file or
  43. any portion of it, and copy and distribute such modifications under
  44. the terms of Paragraph 1 above, provided that you also do the following:
  45.  
  46.     a) cause the modified files to carry prominent notices stating
  47.     that you changed the files and the date of any change; and
  48.  
  49.     b) cause the whole of any work that you distribute or publish,
  50.     that in whole or in part contains or is a derivative of this
  51.     program or any part thereof, to be licensed at no charge to all
  52.     third parties on terms identical to those contained in this
  53.     License Agreement (except that you may choose to grant more extensive
  54.     warranty protection to some or all third parties, at your option).
  55.  
  56.     c) You may charge a distribution fee for the physical act of
  57.     transferring a copy, and you may at your option offer warranty
  58.     protection in exchange for a fee.
  59.  
  60. Mere aggregation of another unrelated program with this program (or its
  61. derivative) on a volume of a storage or distribution medium does not bring
  62. the other program under the scope of these terms.
  63.  
  64.   3. You may copy and distribute this program (or a portion or derivative
  65. of it, under Paragraph 2) in object code or executable form under the terms
  66. of Paragraphs 1 and 2 above provided that you also do one of the following:
  67.  
  68.     a) accompany it with the complete corresponding machine-readable
  69.     source code, which must be distributed under the terms of
  70.     Paragraphs 1 and 2 above; or,
  71.  
  72.     b) accompany it with a written offer, valid for at least three
  73.     years, to give any third party free (except for a nominal
  74.     shipping charge) a complete machine-readable copy of the
  75.     corresponding source code, to be distributed under the terms of
  76.     Paragraphs 1 and 2 above; or,
  77.  
  78.     c) accompany it with the information you received as to where the
  79.     corresponding source code may be obtained.  (This alternative is
  80.     allowed only for noncommercial distribution and only if you
  81.     received the program in object code or executable form alone.)
  82.  
  83. For an executable file, complete source code means all the source code for
  84. all modules it contains; but, as a special exception, it need not include
  85. source code for modules which are standard libraries that accompany the
  86. operating system on which the executable file runs.
  87.  
  88.   4. You may not copy, sublicense, distribute or transfer this program
  89. except as expressly provided under this License Agreement.  Any attempt
  90. otherwise to copy, sublicense, distribute or transfer this program is void and
  91. your rights to use the program under this License agreement shall be
  92. automatically terminated.  However, parties who have received computer
  93. software programs from you with this License Agreement will not have
  94. their licenses terminated so long as such parties remain in full compliance.
  95.  
  96.   5. If you wish to incorporate parts of this program into other free
  97. programs whose distribution conditions are different, write to the Free
  98. Software Foundation at 675 Mass Ave, Cambridge, MA 02139.  We have not yet
  99. worked out a simple rule that can be stated here, but we will often permit
  100. this.  We will be guided by the two goals of preserving the free status of
  101. all derivatives of our free software and of promoting the sharing and reuse of
  102. software.
  103.  
  104.  
  105. In other words, you are welcome to use, share and improve this program.
  106. You are forbidden to forbid anyone else to use, share and improve
  107. what you give them.   Help stamp out software-hoarding!  */
  108.  
  109.  
  110. /* The standard Vax 4.2 Unix crt0.c cannot be used for Emacs
  111.    because it makes `envron' an initialized variable.
  112.    It is easiest to have a special crt0.c on all machines
  113.    though I don't know whether other machines actually need it.  */
  114.  
  115. /* On the vax and 68000, in BSD4.2 and USG5.2,
  116.    this is the data format on startup:
  117.   (vax) ap and fp are unpredictable as far as I know; don't use them.
  118.   sp ->  word containing argc
  119.          word pointing to first arg string
  120.      [word pointing to next arg string]... 0 or more times
  121.      0
  122. Optionally:
  123.      [word pointing to environment variable]... 1 or more times
  124.      ...
  125.      0
  126. And always:
  127.      first arg string
  128.      [next arg string]... 0 or more times
  129. */
  130.  
  131. /* On the 16000, at least in the one 4.2 system I know about,
  132.   the initial data format is
  133.   sp ->  word containing argc
  134.          word containing argp
  135.          word pointing to first arg string, and so on as above
  136. */
  137.  
  138. #define CRT0_DUMMIES bogus_fp,
  139. #define DOT_GLOBAL_START
  140.  
  141.  
  142. /*        ********  WARNING ********
  143.     Do not insert any data definitions before data_start!
  144.     Since this is the first file linked, the address of the following
  145.     variable should correspond to the start of initialized data space.
  146.     On some systems this is a constant that is independent of the text
  147.     size for shared executables.  On others, it is a function of the
  148.     text size. In short, this seems to be the most portable way to
  149.     discover the start of initialized data space dynamically at runtime,
  150.     for either shared or unshared executables, on either swapping or
  151.     virtual systems.  It only requires that the linker allocate objects
  152.     in the order encountered, a reasonable model for most Unix systems.
  153.     Similarly, note that the address of _start() should be the start
  154.     of text space.   Fred Fish, UniSoft Systems Inc.  */
  155.  
  156. int data_start = 0;
  157.  
  158. #ifdef NEED_ERRNO
  159. int errno;
  160. #endif
  161.  
  162. #ifndef DONT_NEED_ENVIRON
  163. char **environ;
  164. #endif
  165.  
  166. /* Define symbol "start": here; some systems want that symbol.  */
  167. #ifdef DOT_GLOBAL_START
  168. asm("    .text        ");
  169. asm("    .globl start    ");
  170. asm("    start:        ");
  171. #endif /* DOT_GLOBAL_START */
  172.  
  173. #ifdef NODOT_GLOBAL_START
  174. asm("    text        ");
  175. asm("    global start    ");
  176. asm("    start:        ");
  177. #endif /* NODOT_GLOBAL_START */
  178.  
  179. _start ()
  180. {
  181. /* On vax, nothing is pushed here  */
  182. /* On sequent, bogus fp is pushed here  */
  183.   start1 ();
  184. }
  185.  
  186. static
  187. start1 (CRT0_DUMMIES argc, xargv)
  188.      int argc;
  189.      char *xargv;
  190. {
  191.   register char **argv = &xargv;
  192.   environ = argv + argc + 1;
  193.  
  194.   if ((char *)environ == xargv)
  195.     environ--;
  196.   exit (main (argc, argv, environ));
  197. }
  198.